home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Much MORE than Just FREE Internet Access
/
Much More Than Just FREE Internet Access (Cookbook)(LineOne).ISO
/
chkdun.bat
< prev
next >
Wrap
DOS Batch File
|
1999-11-05
|
492b
|
17 lines
@echo off
:checkfile
if exist "%windir%\start menu\programs\accessories\dial-up networking.lnk" goto lab2
if exist "%windir%\start menu\programs\accessories\communications\dial-up networking.lnk" goto lab2
if exist "%USERPROFILE%\start menu\programs\accessories\dial-up networking.lnk" goto lab2
:lab1
REM File not found.
notepad signup\dun\dun.txt
goto end
:lab2
REM File found.
start signup\dun\signup.isp
goto end
:end
exit